I am using a Java class to access MS Access database from Xpages. I debug the Java using JCreator and it works there. I have SELECT, INSERT, and DELETE queries that all work, but UPDATE throws a SQLException: General Exception. I used PreparedStatement, and then simplified it using just Statement with no parameters (i.e. UPDATE table SET First_Name = 'What' WHERE Last_Name = 'Who') with the same result, so it seems like it is UPDATE it doesn't like. Any suggestions?